home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 112 / maccd 112.iso / Utilities / Mac OS X / uControl1.3.7.dmg / uControl1.3.7.pkg / Contents / Resources / preupgrade < prev    next >
Encoding:
Text File  |  2003-11-04  |  450 b   |  26 lines

  1. #!/bin/sh
  2. # preupgrade
  3. ucontrol=/Library/StartupItems/uControl/uControl
  4.  
  5. $ucontrol stop
  6.  
  7. oldpref=/Library/PreferencePanes/uControlPanel.prefPane
  8. newpref=/Library/PreferencePanes/uControl.prefPane
  9.  
  10. #cat <<EOF | osascript
  11. #  tell application "System Preferences"
  12. #     quit
  13. #  end tell
  14. #EOF
  15.  
  16. for pref in $oldpref $newpref; do
  17.     if [ -e "$pref" ]; then
  18.         rm -rf "$pref"
  19.     fi
  20. done
  21.  
  22. if [ -e "$ucontrol" ]; then
  23.     $ucontrol uninstall
  24. fi
  25. exit 0
  26.